home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / MediaMonkey 3.1.0.1256 / MediaMonkey_3.1.0.1256.exe / {app} / Scripts / MediaMonkey init.js < prev    next >
Text File  |  2008-02-11  |  1KB  |  53 lines

  1. // MessageBox type constants
  2. mtWarning      = 0; 
  3. mtError        = 1;
  4. mtInformation  = 2;
  5. mtConfirmation = 3;
  6. mtCustom       = 4;
  7.  
  8.  
  9. // MessageBox buttons constants
  10. mbYes         =  0;
  11. mbYesToAll    =  1;
  12. mbNo          =  2;
  13. mbNoToAll     =  3;
  14. mbOk          =  4;
  15. mbOkToAll     =  5;
  16. mbEdit        =  6;
  17. mbEditToAll   =  7;
  18. mbCancel      =  8;
  19. mbAbort       =  9;
  20. mbRetry       = 10;
  21. mbIgnore      = 11;
  22. mbIgnoreToAll = 12;
  23. mbAll         = 13;
  24. mbHelp        = 14;
  25.  
  26.  
  27. // MessageBox results
  28. mrNone        =   0;
  29. mrOk          =   1;
  30. mrCancel      =   2;
  31. mrAbort       =   3;
  32. mrRetry       =   4;
  33. mrIgnore      =   5;
  34. mrYes         =   6;
  35. mrNo          =   7;
  36. mrAll         =   8;
  37. mrNoToAll     =   9;
  38. mrYesToAll    =  10;
  39. mrOkToAll     = 110;
  40. mrIgnoreToAll = 111;
  41.  
  42.  
  43. // Common Dialog (Open/Save) constants
  44. cdlOFNOverwritePrompt    = 0x0002;
  45. cdlOFNHideReadOnly       = 0x0004;
  46. cdlOFNNoChangeDir        = 0x0008;
  47. cdlOFNAllowMultiselect   = 0x0200;
  48. cdlOFNExtensionDifferent = 0x0400;
  49. cdlOFNPathMustExist      = 0x0800;
  50. cdlOFNFileMustExist      = 0x1000;
  51. cdlOFNCreatePrompt       = 0x2000;
  52. cdlOFNNoReadOnlyReturn   = 0x8000;
  53.